base class - significado y definición. Qué es base class
Diclib.com
Diccionario en línea

Qué (quién) es base class - definición

CONCEPT IN OBJECT-ORIENTED PROGRAMMING
Inheritance-oop; Inheritance in object-oriented programming; Hierarchy (object-oriented programming); Inheritance (computer science)/object-oriented programming; Is-a relation; Subclass (computer science); Inheritance (programming); Superclass (computer science); Base class; Derived class; Parent class; Early binding; Superclass (database theory); Subclass (database theory); Concrete superclass; Inheritance hierarchy; Super (computer science); Implementation inheritance; Inheritance (computer science); Type inheritance; Wikipedia talk:Articles for creation/Type Inheritance; Inherited class; Class inheritance; Subclassing (OOP); Static inheritance; Classical inheritance; Object inheritance
  • Illustration of method overriding
  • Multilevel inheritance
  • Multiple inheritance
  • Single inheritance

base class         
<programming> (Or "superclass") The class from which another class (a "subclass") inherits, the class it is based on. "base class" is the term used in C++. The objects of the superclass are a superset of the objects of the subclass. See inheritance. (2004-01-31)
Fragile base class         
OBJECT-ORIENTED PROGRAMMING SYSTEM PROBLEM
Fragile base class problem; Brittle base class
The fragile base class problem is a fundamental architectural problem of object-oriented programming systems where base classes (superclasses) are considered "fragile" because seemingly safe modifications to a base class, when inherited by the derived classes, may cause the derived classes to malfunction. The programmer cannot determine whether a base class change is safe simply by examining in isolation the methods of the base class.
Class-based programming         
OBJECT-ORIENTED PROGRAMMING PARADIGM
Class-based (programming); Class-based OOP; Class-based; Class-orientation; Class-based language
Class-based programming, or more commonly class-orientation, is a style of object-oriented programming (OOP) in which inheritance occurs via defining classes of objects, instead of inheritance occurring via the objects alone (compare prototype-based programming).

Wikipedia

Inheritance (object-oriented programming)

In object-oriented programming, inheritance is the mechanism of basing an object or class upon another object (prototype-based inheritance) or class (class-based inheritance), retaining similar implementation. Also defined as deriving new classes (sub classes) from existing ones such as super class or base class and then forming them into a hierarchy of classes. In most class-based object-oriented languages, an object created through inheritance, a "child object", acquires all the properties and behaviors of the "parent object" , with the exception of: constructors, destructor, overloaded operators and friend functions of the base class. Inheritance allows programmers to create classes that are built upon existing classes, to specify a new implementation while maintaining the same behaviors (realizing an interface), to reuse code and to independently extend original software via public classes and interfaces. The relationships of objects or classes through inheritance give rise to a directed acyclic graph.

An inherited class is called a subclass of its parent class or super class. The term "inheritance" is loosely used for both class-based and prototype-based programming, but in narrow use the term is reserved for class-based programming (one class inherits from another), with the corresponding technique in prototype-based programming being instead called delegation (one object delegates to another). Class-modifying inheritance patterns can be pre-defined according to simple network interface parameters such that inter-language compatibility is preserved.

Inheritance should not be confused with subtyping. In some languages inheritance and subtyping agree, whereas in others they differ; in general, subtyping establishes an is-a relationship, whereas inheritance only reuses implementation and establishes a syntactic relationship, not necessarily a semantic relationship (inheritance does not ensure behavioral subtyping). To distinguish these concepts, subtyping is sometimes referred to as interface inheritance (without acknowledging that the specialization of type variables also induces a subtyping relation), whereas inheritance as defined here is known as implementation inheritance or code inheritance. Still, inheritance is a commonly used mechanism for establishing subtype relationships.

Inheritance is contrasted with object composition, where one object contains another object (or objects of one class contain objects of another class); see composition over inheritance. Composition implements a has-a relationship, in contrast to the is-a relationship of subtyping.